```html{2} <template> <authenticator :hide-sign-up="true"> <template v-slot="{ user, signOut }"> <h1>Hello {{ user.username }}!</h1> <button @click="signOut">Sign Out</button> </template> </authenticator> </template> ```